home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 28 / CD Expert nº 28 Hexen II.7z / CD Expert nº 28 Hexen II.bin / INSTALL / HEXEN2 / H2b.bat < prev    next >
DOS Batch File  |  1997-09-03  |  1KB  |  43 lines

  1. @echo off
  2. if x%1==xfast goto fast
  3. if x%1==xsafe goto safe
  4. if x%1==xverysafe goto verysafe
  5. if x%1==xfastvid goto fastvid
  6. if x%1==xfastsnd goto fastsnd
  7. if x%1==xmax goto max
  8.  
  9. echo -------------------------------------------------------------------
  10. echo Options for running Hexen 2:
  11. echo  h2b max:      all features on, but doesn't work on all systems
  12. echo  h2b fast:     maximum speed, but doesn't work on all systems
  13. echo  h2b fastvid:  maximum video speed, but safer, probably slower sound
  14. echo  h2b fastsnd:  maximum sound speed, but safer, probably slower video
  15. echo  h2b safe:     very likely to run, but may be slower
  16. echo  h2b verysafe: almost sure to run, but probably slower, and no sound
  17. echo -------------------------------------------------------------------
  18. goto done
  19.  
  20. :max
  21. h2 -dinput %2 %3 %4 %5 %6 %7 %8 %9
  22. goto done
  23.  
  24. :fast
  25. h2 %2 %3 %4 %5 %6 %7 %8 %9
  26. goto done
  27.  
  28. :fastvid
  29. h2 -wavonly %2 %3 %4 %5 %6 %7 %8 %9
  30. goto done
  31.  
  32. :fastsnd
  33. h2 -nodirectdraw -nowindirect %2 %3 %4 %5 %6 %7 %8 %9
  34. goto done
  35.  
  36. :safe
  37. h2 -nodirectdraw -nowindirect -wavonly %2 %3 %4 %5 %6 %7 %8 %9
  38. goto done
  39.  
  40. :verysafe
  41. h2 -dibonly -nosound -nojoy %2 %3 %4 %5 %6 %7 %8 %9
  42. :done
  43.